/* assets/css/pages/contact.css */

.contact-uplink {
    background: #000000 !important; /* Pure Black Background */
    min-height: 100vh;
    padding: 150px 0;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
}

.contact-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Header Styling */
.c-header { margin-bottom: 100px; }
.c-meta { font-size: 0.75rem; color: #8b2cf5; letter-spacing: 5px; margin-bottom: 25px; font-weight: bold; }
.c-title { font-size: clamp(3rem, 10vw, 6rem); font-weight: 900; letter-spacing: -4px; margin: 0; line-height: 1; }
.c-glow { text-shadow: 0 0 30px rgba(139, 44, 245, 0.4); }
.c-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.4); margin-top: 25px; letter-spacing: 1px; max-width: 700px; }

/* Connection Grid */
.connection-node {
    display: flex;
    flex-direction: column;
    gap: 60px;
    border-left: 1px solid rgba(139, 44, 245, 0.2);
    padding-left: 50px;
}

.node-item { display: flex; flex-direction: column; gap: 15px; }

.node-label { 
    font-size: 0.65rem; 
    color: rgba(255, 255, 255, 0.3); 
    letter-spacing: 4px; 
    font-weight: bold; 
}

.node-link {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s;
    word-break: break-all;
}

.node-link:hover {
    color: #8b2cf5;
    text-shadow: 0 0 20px rgba(139, 44, 245, 0.5);
}

/* Status Indicators */
.status-box { display: flex; align-items: center; gap: 15px; }
.status-text { font-size: 1rem; color: #fff; letter-spacing: 2px; }

.status-dot.blink {
    width: 10px; height: 10px;
    background: #00ff9c;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff9c;
    animation: pulse 1.5s infinite;
}

.contact-footer { margin-top: 120px; }
.c-footnote {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 5px;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .connection-node { padding-left: 20px; }
    .node-link { font-size: 1.2rem; }
}